We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To add sites other than github to the addon these files have to change
"permissions": [ "https://*.codesy.io/", "*://codesy-stage.herokuapp.com/", "*://*.github.com/*", "storage", "tabs", "webRequest", "webRequestBlocking" ], "content_scripts": [ { "all_frames": false, "js": [ "js/jquery-3.2.0.min.js", "js/issue.js" ], "matches": [ "*://*.github.com/*" ] },
const githubFilter = { urls: ["*://*.github.com/*"], types: ["main_frame"] };
const issue_rx = /https:\/\/github.com\/.*\/issues\/[1-9]+/
function when_installed ({reason}) { find_these({ title: "*codesy.io*" }) .then(select_them) .then(reload_them) .then(()=>{ find_these({ url: "*://*.github.com/*" }) .then(reload_them) }) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To add sites other than github to the addon these files have to change
The text was updated successfully, but these errors were encountered: