Created
December 26, 2012 04:51
-
-
Save fancyremarker/4377944 to your computer and use it in GitHub Desktop.
Instapaper Chrome extension converted from bookmarklet via @peterlegierski's plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| chrome.browserAction.onClicked.addListener(function(tab) { | |
| chrome.tabs.executeScript(tab.id, {file: "bookmarklet.js"}) | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function iprl5(){var d=document,z=d.createElement('scr'+'ipt'),b=d.body,l=d.location;try{if(!b)throw(0);d.title='(Saving...) '+d.title;z.setAttribute('src',l.protocol+'//www.instapaper.com/j/OhrhewKmXt3s?u='+encodeURIComponent(l.href)+'&t='+(new Date().getTime()));b.appendChild(z);}catch(e){alert('Please wait until the page has loaded.');}}iprl5();void(0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "background": {"scripts": ["background.js"]}, | |
| "browser_action": { | |
| "default_icon": "icon-128.png", | |
| "default_title": "Instapaper" | |
| }, | |
| "name": "Instapaper", | |
| "description": "Read Later (Send To Instapaper)", | |
| "homepage_url": "http://www.instapaper.com/", | |
| "icons": { | |
| "16": "icon-16.png", | |
| "48": "icon-48.png", | |
| "128": "icon-128.png" }, | |
| "permissions": [ | |
| "tabs", | |
| "http://*/*", | |
| "https://*/*" | |
| ], | |
| "version": "0.1", | |
| "manifest_version": 2 | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note: Icons are from Instapaper's press kit. This plugin is in no way affiliated with Instapaper.